home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-06 | 689 b | 27 lines | [TEXT/KAHL] |
- //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- //| This file contains the interface to the CMouseControlsDirector class. The
- //| CMouseControlsDirector class supervises the mouse controls dialog.
- //|________________________________________________________________________________
-
- #pragma once
- #include <CDialogDirector.h>
-
- CLASS CArray;
- CLASS CMouseControlsArrayPane;
-
- class CMouseControlsDirector : public CDialogDirector
- {
-
- CArray *array;
- CMouseControlsArrayPane *array_pane;
-
- public:
-
- void IMouseControlsDirector(CDirectorOwner *supervisor);
- void DoCommand(long command);
- void TalkToUser(void);
-
- void BuildArrayFromPrefs(void);
-
- };
-